home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / locales / install-language-pack next >
Text File  |  2009-10-14  |  571b  |  23 lines

  1. #!/bin/sh -e
  2.  
  3. if [ -z "$1" ]; then
  4.     echo "Usage: $0 <language code> <class> [<version>]"
  5.     exit 0
  6. fi
  7.  
  8. # install locales for base packages (not for gnome/kde)
  9. # (use "--no-purge" in case PURGE=yes is used in config, which would remove
  10. #  all other locale files)
  11. if [ -z "$2" ]; then
  12.     /usr/sbin/locale-gen --no-purge --lang "$1"
  13. fi
  14.  
  15. # reload gdm to make it aware of new locales
  16. if [ -x /etc/init.d/gdm ]; then
  17.     if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
  18.         invoke-rc.d gdm reload || exit 0
  19.     else
  20.         /etc/init.d/gdm reload || exit 0
  21.     fi
  22. fi
  23.